const github.com/andybalholm/brotli.maxNpostfix

6 uses

	github.com/andybalholm/brotli (current package)
		constants.go#L46: const maxNpostfix = 3
		decode.go#L2000: var maxDistanceSymbol_bound = [maxNpostfix + 1]uint32{0, 4, 12, 28}
		decode.go#L2001: var maxDistanceSymbol_diff = [maxNpostfix + 1]uint32{73, 126, 228, 424}
		encode.go#L522: 		if distance_postfix_bits > maxNpostfix || num_direct_distance_codes > maxNdirect || ndirect_msb<<distance_postfix_bits != num_direct_distance_codes {
		metablock.go#L70: 		var bound = [maxNpostfix + 1]uint32{0, 4, 12, 28}
		metablock.go#L157: 	for npostfix = 0; npostfix <= maxNpostfix; npostfix++ {